Closed (fixed)
Project:
Pixture Reloaded
Version:
6.x-3.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Mar 2009 at 01:07 UTC
Updated:
8 May 2012 at 20:44 UTC
Jump to comment: Most recent file
Comments
Comment #1
roball commentedI could fix the second problem with replacing
by
within style.css.
Comment #2
roball commentedI now found that adding
to style.css fixes the first problem :-)
Comment #3
roball commentedComment #4
roball commentedAnd here is the patch against HEAD that should fix all the problems mentioned in this report.
Comment #5
rezboom commentedthanks!
just tried the fix for the first problem - white background when hovering over jquery menu items - by appending the suggested CSS to pixture reloaded's style.css but unfortunately, this did not work for me...
an additional note:
the white background problem is also occuring with IE6.
Comment #6
roball commentedrezboom, did you ensure Optimize CSS files to be Disabled at "Administer -> Site configuration -> Performance" before modifying the .css file? I forgot that in the past, too and this beast of IE didn't respect the modified CSS until I disabled CSS optimization.
Comment #7
rezboom commentedI disabled CSS optimization, but this did not get rid of the problem either. I will report back, if I manage to make it work.
Anyway, thanks for your help!
Comment #8
kenapp commentedHi,
First time posting, and have this same issue. I edited style.css as outlined in this proposed patch, but the issue of IE7 displaying a white background after hovering on expandable links still exists.
I do have some information to add.
After hovering over the expandable area in a jquery menu and having the background turn white, I notice that the color reverts back to what is specified in the pixture-reloaded theme after I hover over buttons (search, log in) or the superfish menu. I am no programmer, but my guess it that there is some issue with the java script somewhere.
If anyone has resolved this issue, I would love to see it posted here.
Thanks.
Comment #9
vitis commentedI have a similar problem.
Comment #10
scoutbaker commented@vitis (#9):
This issue is for the Pixture Reloaded theme. While you may have the same or similar issue, you are using the Acquia Marina theme. If you would like support for that theme, post a request in that theme's issue queue.
Comment #11
dvarney commentedComment #12
dvarney commented//
//
//
// BEGIN IE 7 z-index Navigation Fix by: Chepri DJV
// Check for browser version
jQuery.each(jQuery.browser, function(i, val) {
if($.browser.msie && val == '7.0'){
$(function() {
var zIndexNumber = 1000;
$('div').each(function() {
// Apply this fix to only head-top-wrapper's children (doing this prevents the fix from affecting the rest of the page)
if(this.id == 'header-top-wrapper'){
$(this).children().css('zIndex', zIndexNumber);
zIndexNumber -= 10;
}
});
});
}
});
// END IE 7 z-index Navigation Fix by: Chepri DJV
//
//
//
Comment #14
Jeff Burnz commentedThis must be fixed by now, surely...